home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1999 #2 / Amiga Plus CD - 1999 - No. 2.iso / Magazin / LibGuide / MyDevice.rexx < prev    next >
OS/2 REXX Batch file  |  1998-10-10  |  345b  |  15 lines

  1. /* Library Check on a selected volume
  2.    V2.0- 10/03/98 - © Age*/
  3.  
  4. if ~show('L',"rexxreqtools.library") then addlib('rexxreqtools.library',0,-30,0)
  5.  
  6. Volume = rtfilerequest(,,"Pick a Volume",,"rtfi_volumerequest=vreqf_noassigns")
  7. IF Volume = "" then do
  8.    address command '"SetEnv" dev='0
  9.    exit
  10. END
  11.  
  12. address command '"SetEnv" dev='Volume
  13.  
  14. Exit
  15.